home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro11 / example.bas < prev    next >
BASIC Source File  |  1993-10-24  |  739b  |  23 lines

  1. '*  EXAMPLE.BAS
  2. '*  How to use the SOS-ENGINE with BASIC
  3. '*
  4. '*  Be sure to add SOSFUNC to your link line
  5. '*  Example:  LINK example sosfunc,,,,
  6.  
  7.  
  8.  DEFINT A-Z                                                 
  9.                                                             
  10.  
  11.  CALL SeOnLog            'Turn on logging
  12.  CALL SeOffPntr          'Turn off file pointer logging
  13.  CALL SeOffMem           'Turn off memory access logging
  14.  CALL SeOffWrite         'Turn off file write logging
  15.  
  16.  PRINT
  17.  PRINT "Logging activated."
  18.  PRINT "File pointer movement logging de-activated."
  19.  PRINT "Memory access logging de-activated."
  20.  PRINT "File write logging de-activated."
  21.  
  22.  END                                                        
  23.